home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 3: Developer Tools
/
Linux Cubed Series 3 - Developer Tools.iso
/
devel
/
make
/
icmake-6.000
/
icmake-6
/
icmake
/
exec
/
funecho.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-02-08
|
373 b
|
23 lines
/*
\funcref{fun\_echo}{void fun\_echo ()}
{}
{}
{}
{}
{funecho.c}
{
This function is executed when an {\em op\_echo} opcode is encountered.
The global variable {\em echo} is set to the {\em vu.intval} value of
the last pushed variable.
}
*/
#include "icm-exec.h"
void fun_echo ()
{
echo = stack [sp].vu.intval;
}